home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
- <!-- Copyright (C) 1995-2002 Jasc Software, Inc. and its licensors. -->
- <!-- All rights reserved. -->
- <!DOCTYPE xsl:stylesheet [
- <!ENTITY externalScript SYSTEM "../ScriptLib/common.xsl">
- ]>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
- &externalScript;
- <xsl:template match="/">
- <HTML>
- <xsl:apply-templates/>
- </HTML>
- </xsl:template>
- <xsl:template match="photos">
- <xsl:apply-templates/>
- </xsl:template>
- <xsl:template match="album">
- <xsl:apply-templates select="imagelist"/>
- </xsl:template>
- <xsl:template match="imagelist">
- <xsl:apply-templates select="imageinfo"/>
- </xsl:template>
- <xsl:template match="imageinfo">
- <xsl:element name="ixfile">
- <xsl:attribute name="fname"><xsl:value-of select="html_info/@fname"/></xsl:attribute>
- <head>
- <title>
- <xsl:eval>GetAlbumTitle()</xsl:eval>
-
- </title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <meta name="copyright" content="Copyright (C) 1995-2002 Jasc Software, Inc. and its licensors. All rights reserved."/>
-
- </head>
- <BODY bgcolor="#CCFFFF">
- <table width="800" border="5" cellspacing="5" cellpadding="0" bordercolor="#639AFF" bgcolor="#000000">
- <tr>
- <td width="425" valign="top" bgcolor="#FFFFFF"><div align="center"><h1><font face="Matura MT Script Capitals" color="#639AFF"><xsl:eval>GetAlbumTitle()</xsl:eval><img src="animations/animatedcar.gif" width="425" height="46" vspace="0" hspace="0" border="0"/></font></h1></div></td>
- <td width="375" bgcolor="#FFFFFF"><div align="right"><img src="graphics/carsales.gif" width="167" height="90"/></div></td>
- </tr>
- <tr>
- <td colspan="2"><div align="center"><table width="800" border="0" cellspacing="4" cellpadding="0" bgcolor="#639AFF">
- <tr>
- <td width="160" valign="top" height="20"><div align="center"><b><font face="Times New Roman, Times, serif" size="2" color="#000000">Vehicle Information</font></b></div></td>
- <td width="660" valign="top" rowspan="5"><div align="left"><IMG border="3"><xsl:attribute name="src"><xsl:value-of select="@fname"/></xsl:attribute><xsl:attribute name="width"><xsl:value-of select="imagesize/@width"/></xsl:attribute>
- <xsl:attribute name="height"><xsl:value-of select="imagesize/@height"/></xsl:attribute>
- <xsl:attribute name="alt"><xsl:value-of select="title"/></xsl:attribute></IMG></div></td>
- </tr>
- <tr>
- <td valign="top" height="20"><font face="Times New Roman, Times, serif" size="2" color="#000000"><b>Title:</b><br kludge=""/>
- <xsl:value-of select="title"/>
- <br kludge=""/></font></td>
- </tr>
- <tr>
- <td valign="top" height="300"><font face="Times New Roman, Times, serif" size="2" color="#000000">
- <br kludge=""/>
- <b>Information:</b> <xsl:choose>
- <xsl:when test="audio_info/@fname[. != '']">
- <div align="left"><xsl:apply-templates select="audio_info"/></div>
- </xsl:when>
- <xsl:otherwise>
- <div align="left"><img border="0" src="graphics/transparenth120.gif" width="1" height="1"/></div>
- </xsl:otherwise>
- </xsl:choose><xsl:choose>
- <xsl:when test="movie_info/@fname[. != '']">
- <div align="left"><xsl:apply-templates select="movie_info"/></div>
- </xsl:when>
- <xsl:otherwise>
- <div align="left"><img border="0" src="graphics/transparenth120.gif" width="1" height="1"/></div>
- </xsl:otherwise>
- </xsl:choose>
-
- <br kludge=""/>
- <xsl:value-of select="description"/></font></td>
- </tr>
- <tr>
- <td valign="bottom"><table width="180" border="0" cellspacing="4" cellpadding="0">
- <tr>
- <td width="90"><div align="center"><font face="Arial, Helvetica, sans-serif" size="2" color="#639AFF"><xsl:apply-templates select="previous"/></font></div></td>
- <td width="90"><div align="center"><font face="Arial, Helvetica, sans-serif" size="2" color="#639AFF">
- <xsl:apply-templates select="next"/></font></div></td>
- </tr>
- </table></td>
- </tr>
- </table></div></td>
- </tr>
-
- </table>
- </BODY>
- </xsl:element>
- </xsl:template>
-
-
- <xsl:template match="previous">
- <xsl:value-of/>
- <xsl:choose>
- <xsl:when match="previous[@fname != '']">
- <A><xsl:attribute name="href"><xsl:value-of select="@fname"/></xsl:attribute>Previous</A>
- </xsl:when>
- <xsl:otherwise>Previous</xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <xsl:template match="next">
- <xsl:value-of/>
- <xsl:choose>
- <xsl:when match="next[@fname != '']">
- <A><xsl:attribute name="href"><xsl:value-of select="@fname"/></xsl:attribute>Next</A>
- </xsl:when>
- <xsl:otherwise>Next</xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <xsl:template match="audio_info">
- <xsl:if match="audio_info[@fname != '']">
- <A><xsl:attribute name="href"><xsl:value-of select="@fname"/></xsl:attribute>
- <img border="0" src="graphics/sound.gif"/></A>
- </xsl:if>
- </xsl:template>
- <xsl:template match="movie_info">
- <A><xsl:attribute name="href"><xsl:value-of select="@fname"/></xsl:attribute>
- <img border="0" src="graphics/movie.gif" width="24" height="28"/></A>
- </xsl:template>
-
- </xsl:stylesheet>
-